From: Eli Zaretskii Date: Thu, 16 Apr 2020 10:08:01 +0000 (+0300) Subject: Avoid compiler warning in indent.c X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~16^2~6798 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=c77d6af1ddb4cc2a515397e955b8389fa9025d8c;p=emacs.git Avoid compiler warning in indent.c * src/indent.c (Fvertical_motion): Avoid compilation warning. Reported by Juanma Barranquero . --- diff --git a/src/indent.c b/src/indent.c index f7db42783c1..2d07791606d 100644 --- a/src/indent.c +++ b/src/indent.c @@ -2102,6 +2102,8 @@ whether or not it is currently displayed in some window. */) lcols = XCAR (lines); lines = XCDR (lines); } + else + lcols = 0; /* shut up stupid GCC warning */ CHECK_FIXNUM (lines); w = decode_live_window (window);